home *** CD-ROM | disk | FTP | other *** search
Wrap
/* * DO NOT EDIT. THIS FILE IS GENERATED FROM nsIDocShell.idl */ #ifndef __gen_nsIDocShell_h__ #define __gen_nsIDocShell_h__ #ifndef __gen_nsISupports_h__ #include "nsISupports.h" #endif /* For IDL files that don't want to include root IDL files. */ #ifndef NS_NO_VTABLE #define NS_NO_VTABLE #endif class nsPresContext; class nsIPresShell; class nsIURI; /* forward declaration */ class nsIContentViewer; /* forward declaration */ class nsIURIContentListener; /* forward declaration */ class nsIChromeEventHandler; /* forward declaration */ class nsIDocShellLoadInfo; /* forward declaration */ class nsIDocumentCharsetInfo; /* forward declaration */ class nsIWebNavigation; /* forward declaration */ class nsISimpleEnumerator; /* forward declaration */ class nsIInputStream; /* forward declaration */ class nsIRequest; /* forward declaration */ class nsISHEntry; /* forward declaration */ class nsILayoutHistoryState; /* forward declaration */ class nsISecureBrowserUI; /* forward declaration */ /* starting interface: nsIDocShell */ #define NS_IDOCSHELL_IID_STR "9f0c7461-b9a4-47f6-b88c-421dce1bce66" #define NS_IDOCSHELL_IID \ {0x9f0c7461, 0xb9a4, 0x47f6, \ { 0xb8, 0x8c, 0x42, 0x1d, 0xce, 0x1b, 0xce, 0x66 }} class NS_NO_VTABLE nsIDocShell : public nsISupports { public: NS_DEFINE_STATIC_IID_ACCESSOR(NS_IDOCSHELL_IID) /** * Loads a given URI. This will give priority to loading the requested URI * in the object implementing this interface. If it can't be loaded here * however, the URL dispatcher will go through its normal process of content * loading. * * @param uri - The URI to load. * @param loadInfo - This is the extended load info for this load. This * most often will be null, but if you need to do * additional setup for this load you can get a loadInfo * object by calling createLoadInfo. Once you have this * object you can set the needed properties on it and * then pass it to loadURI. * @param aLoadFlags - Flags to modify load behaviour. Flags are defined * in nsIWebNavigation. */ /* [noscript] void loadURI (in nsIURI uri, in nsIDocShellLoadInfo loadInfo, in unsigned long aLoadFlags, in boolean firstParty); */ NS_IMETHOD LoadURI(nsIURI *uri, nsIDocShellLoadInfo *loadInfo, PRUint32 aLoadFlags, PRBool firstParty) = 0; /** * Loads a given stream. This will give priority to loading the requested * stream in the object implementing this interface. If it can't be loaded * here however, the URL dispatched will go through its normal process of * content loading. * * @param aStream - The input stream that provides access to the data * to be loaded. This must be a blocking, threadsafe * stream implementation. * @param aURI - The URI representing the stream, or null. * @param aContentType - The type (MIME) of data being loaded (empty if unknown). * @param aContentCharset - The charset of the data being loaded (empty if unknown). * @param aLoadInfo - This is the extended load info for this load. This * most often will be null, but if you need to do * additional setup for this load you can get a * loadInfo object by calling createLoadInfo. Once * you have this object you can set the needed * properties on it and then pass it to loadStream. */ /* [noscript] void loadStream (in nsIInputStream aStream, in nsIURI aURI, in ACString aContentType, in ACString aContentCharset, in nsIDocShellLoadInfo aLoadInfo); */ NS_IMETHOD LoadStream(nsIInputStream *aStream, nsIURI *aURI, const nsACString & aContentType, const nsACString & aContentCharset, nsIDocShellLoadInfo *aLoadInfo) = 0; enum { INTERNAL_LOAD_FLAGS_NONE = 0 }; enum { INTERNAL_LOAD_FLAGS_INHERIT_OWNER = 1 }; enum { INTERNAL_LOAD_FLAGS_DONT_SEND_REFERRER = 2 }; /** * Loads the given URI. This method is identical to loadURI(...) except * that its parameter list is broken out instead of being packaged inside * of an nsIDocShellLoadInfo object... * * @param aURI - The URI to load. * @param aReferrer - Referring URI * @param aOwner - Owner (security principal) * @param aInheritOwner - Flag indicating whether the owner of the current * document should be inherited if aOwner is null. * @param aStopActiveDoc - Flag indicating whether loading the current * document should be stopped. * @param aWindowTarget - Window target for the load. * @param aTypeHint - A hint as to the content-type of the resulting * data. May be null or empty if no hint. * @param aPostDataStream - Post data stream (if POSTing) * @param aHeadersStream - Stream containing "extra" request headers... * @param aLoadFlags - Flags to modify load behaviour. Flags are defined * in nsIWebNavigation. * @param aSHEntry - Active Session History entry (if loading from SH) */ /* [noscript] void internalLoad (in nsIURI aURI, in nsIURI aReferrer, in nsISupports aOwner, in PRUint32 aFlags, in wstring aWindowTarget, in string aTypeHint, in nsIInputStream aPostDataStream, in nsIInputStream aHeadersStream, in unsigned long aLoadFlags, in nsISHEntry aSHEntry, in boolean firstParty, out nsIDocShell aDocShell, out nsIRequest aRequest); */ NS_IMETHOD InternalLoad(nsIURI *aURI, nsIURI *aReferrer, nsISupports *aOwner, PRUint32 aFlags, const PRUnichar *aWindowTarget, const char *aTypeHint, nsIInputStream *aPostDataStream, nsIInputStream *aHeadersStream, PRUint32 aLoadFlags, nsISHEntry *aSHEntry, PRBool firstParty, nsIDocShell **aDocShell, nsIRequest **aRequest) = 0; /** * Creates a DocShellLoadInfo object that you can manipulate and then pass * to loadURI. */ /* void createLoadInfo (out nsIDocShellLoadInfo loadInfo); */ NS_IMETHOD CreateLoadInfo(nsIDocShellLoadInfo **loadInfo) = 0; /** * Reset state to a new content model within the current document and the document * viewer. Called by the document before initiating an out of band document.write(). */ /* void prepareForNewContentModel (); */ NS_IMETHOD PrepareForNewContentModel(void) = 0; /** * For editors and suchlike who wish to change the URI associated with the * document. Note if you want to get the current URI, use the read-only * property on nsIWebNavigation. */ /* void setCurrentURI (in nsIURI aURI); */ NS_IMETHOD SetCurrentURI(nsIURI *aURI) = 0; /** * Notify the associated content viewer and all child docshells that they are * about to be hidden. If |isUnload| is true, then the document is being * unloaded as well. */ /* [noscript] void firePageHideNotification (in boolean isUnload); */ NS_IMETHOD FirePageHideNotification(PRBool isUnload) = 0; /** * Presentation context for the currently loaded document. This may be null. */ /* [noscript] readonly attribute nsPresContext presContext; */ NS_IMETHOD GetPresContext(nsPresContext * *aPresContext) = 0; /** * Presentation shell for the currently loaded document. This may be null. */ /* [noscript] readonly attribute nsIPresShell presShell; */ NS_IMETHOD GetPresShell(nsIPresShell * *aPresShell) = 0; /** * Presentation shell for the oldest document, if this docshell is * currently transitioning between documents. */ /* [noscript] readonly attribute nsIPresShell eldestPresShell; */ NS_IMETHOD GetEldestPresShell(nsIPresShell * *aEldestPresShell) = 0; /** * Content Viewer that is currently loaded for this DocShell. This may * change as the underlying content changes. */ /* readonly attribute nsIContentViewer contentViewer; */ NS_IMETHOD GetContentViewer(nsIContentViewer * *aContentViewer) = 0; /** * This attribute allows chrome to tie in to handle DOM events that may * be of interest to chrome. */ /* attribute nsIChromeEventHandler chromeEventHandler; */ NS_IMETHOD GetChromeEventHandler(nsIChromeEventHandler * *aChromeEventHandler) = 0; NS_IMETHOD SetChromeEventHandler(nsIChromeEventHandler * aChromeEventHandler) = 0; /** * The document charset info. This is used by a load to determine priorities * for charset detection etc. */ /* attribute nsIDocumentCharsetInfo documentCharsetInfo; */ NS_IMETHOD GetDocumentCharsetInfo(nsIDocumentCharsetInfo * *aDocumentCharsetInfo) = 0; NS_IMETHOD SetDocumentCharsetInfo(nsIDocumentCharsetInfo * aDocumentCharsetInfo) = 0; /** * Whether to allow plugin execution */ /* attribute boolean allowPlugins; */ NS_IMETHOD GetAllowPlugins(PRBool *aAllowPlugins) = 0; NS_IMETHOD SetAllowPlugins(PRBool aAllowPlugins) = 0; /** * Whether to allow Javascript execution */ /* attribute boolean allowJavascript; */ NS_IMETHOD GetAllowJavascript(PRBool *aAllowJavascript) = 0; NS_IMETHOD SetAllowJavascript(PRBool aAllowJavascript) = 0; /** * Attribute stating if refresh based redirects can be allowed */ /* attribute boolean allowMetaRedirects; */ NS_IMETHOD GetAllowMetaRedirects(PRBool *aAllowMetaRedirects) = 0; NS_IMETHOD SetAllowMetaRedirects(PRBool aAllowMetaRedirects) = 0; /** * Attribute stating if it should allow subframes (framesets/iframes) or not */ /* attribute boolean allowSubframes; */ NS_IMETHOD GetAllowSubframes(PRBool *aAllowSubframes) = 0; NS_IMETHOD SetAllowSubframes(PRBool aAllowSubframes) = 0; /** * Attribute stating whether or not images should be loaded. */ /* attribute boolean allowImages; */ NS_IMETHOD GetAllowImages(PRBool *aAllowImages) = 0; NS_IMETHOD SetAllowImages(PRBool aAllowImages) = 0; /** * Get an enumerator over this docShell and its children. * * @param aItemType - Only include docShells of this type, or if typeAll, * include all child shells. * Uses types from nsIDocShellTreeItem. * @param aDirection - Whether to enumerate forwards or backwards. */ enum { ENUMERATE_FORWARDS = 0 }; enum { ENUMERATE_BACKWARDS = 1 }; /* nsISimpleEnumerator getDocShellEnumerator (in long aItemType, in long aDirection); */ NS_IMETHOD GetDocShellEnumerator(PRInt32 aItemType, PRInt32 aDirection, nsISimpleEnumerator **_retval) = 0; /** * The type of application that created this window */ enum { APP_TYPE_UNKNOWN = 0U }; enum { APP_TYPE_MAIL = 1U }; enum { APP_TYPE_EDITOR = 2U }; /* attribute unsigned long appType; */ NS_IMETHOD GetAppType(PRUint32 *aAppType) = 0; NS_IMETHOD SetAppType(PRUint32 aAppType) = 0; /** * certain dochshells (like the message pane) * should not throw up auth dialogs * because it can act as a password trojan */ /* attribute boolean allowAuth; */ NS_IMETHOD GetAllowAuth(PRBool *aAllowAuth) = 0; NS_IMETHOD SetAllowAuth(PRBool aAllowAuth) = 0; /** * Set/Get the document scale factor. When setting this attribute, a * NS_ERROR_NOT_IMPLEMENTED error may be returned by implementations * not supporting zoom. Implementations not supporting zoom should return * 1.0 all the time for the Get operation. 1.0 by the way is the default * of zoom. This means 100% of normal scaling or in other words normal size * no zoom. */ /* attribute float zoom; */ NS_IMETHOD GetZoom(float *aZoom) = 0; NS_IMETHOD SetZoom(float aZoom) = 0; /* attribute long marginWidth; */ NS_IMETHOD GetMarginWidth(PRInt32 *aMarginWidth) = 0; NS_IMETHOD SetMarginWidth(PRInt32 aMarginWidth) = 0; /* attribute long marginHeight; */ NS_IMETHOD GetMarginHeight(PRInt32 *aMarginHeight) = 0; NS_IMETHOD SetMarginHeight(PRInt32 aMarginHeight) = 0; /* attribute boolean hasFocus; */ NS_IMETHOD GetHasFocus(PRBool *aHasFocus) = 0; NS_IMETHOD SetHasFocus(PRBool aHasFocus) = 0; /* attribute boolean canvasHasFocus; */ NS_IMETHOD GetCanvasHasFocus(PRBool *aCanvasHasFocus) = 0; NS_IMETHOD SetCanvasHasFocus(PRBool aCanvasHasFocus) = 0; /* void tabToTreeOwner (in boolean forward, out boolean tookFocus); */ NS_IMETHOD TabToTreeOwner(PRBool forward, PRBool *tookFocus) = 0; /** * Current busy state for DocShell */ enum { BUSY_FLAGS_NONE = 0U }; enum { BUSY_FLAGS_BUSY = 1U }; enum { BUSY_FLAGS_BEFORE_PAGE_LOAD = 2U }; enum { BUSY_FLAGS_PAGE_LOADING = 4U }; /** * Load commands for the document */ enum { LOAD_CMD_NORMAL = 1U }; enum { LOAD_CMD_RELOAD = 2U }; enum { LOAD_CMD_HISTORY = 4U }; /* readonly attribute unsigned long busyFlags; */ NS_IMETHOD GetBusyFlags(PRUint32 *aBusyFlags) = 0; /* attribute unsigned long loadType; */ NS_IMETHOD GetLoadType(PRUint32 *aLoadType) = 0; NS_IMETHOD SetLoadType(PRUint32 aLoadType) = 0; /* boolean isBeingDestroyed (); */ NS_IMETHOD IsBeingDestroyed(PRBool *_retval) = 0; /* readonly attribute boolean isExecutingOnLoadHandler; */ NS_IMETHOD GetIsExecutingOnLoadHandler(PRBool *aIsExecutingOnLoadHandler) = 0; /* attribute nsILayoutHistoryState layoutHistoryState; */ NS_IMETHOD GetLayoutHistoryState(nsILayoutHistoryState * *aLayoutHistoryState) = 0; NS_IMETHOD SetLayoutHistoryState(nsILayoutHistoryState * aLayoutHistoryState) = 0; /* readonly attribute boolean shouldSaveLayoutState; */ NS_IMETHOD GetShouldSaveLayoutState(PRBool *aShouldSaveLayoutState) = 0; /** * The SecureBrowserUI object for this docshell. This is set by XUL * <browser> or nsWebBrowser for their root docshell. */ /* attribute nsISecureBrowserUI securityUI; */ NS_IMETHOD GetSecurityUI(nsISecureBrowserUI * *aSecurityUI) = 0; NS_IMETHOD SetSecurityUI(nsISecureBrowserUI * aSecurityUI) = 0; /** * Cancel the XPCOM timers for each meta-refresh URI in this docshell, * and this docshell's children, recursively. The meta-refresh timers can be * restarted using resumeRefreshURIs(). If the timers are already suspended, * this has no effect. */ /* void suspendRefreshURIs (); */ NS_IMETHOD SuspendRefreshURIs(void) = 0; /** * Restart the XPCOM timers for each meta-refresh URI in this docshell, * and this docshell's children, recursively. If the timers are already * running, this has no effect. */ /* void resumeRefreshURIs (); */ NS_IMETHOD ResumeRefreshURIs(void) = 0; /** * Begin firing WebProgressListener notifications for restoring a page * presentation. |viewer| is the content viewer whose document we are * starting to load. If null, it defaults to the docshell's current content * viewer, creating one if necessary. |top| should be true for the toplevel * docshell that is being restored; it will be set to false when this method * is called for child docshells. This method will post an event to * complete the simulated load after returning to the event loop. */ /* void beginRestore (in nsIContentViewer viewer, in boolean top); */ NS_IMETHOD BeginRestore(nsIContentViewer *viewer, PRBool top) = 0; /** * Finish firing WebProgressListener notifications and DOM events for * restoring a page presentation. This should only be called via * beginRestore(). */ /* void finishRestore (); */ NS_IMETHOD FinishRestore(void) = 0; /* readonly attribute boolean restoringDocument; */ NS_IMETHOD GetRestoringDocument(PRBool *aRestoringDocument) = 0; /* attribute boolean useErrorPages; */ NS_IMETHOD GetUseErrorPages(PRBool *aUseErrorPages) = 0; NS_IMETHOD SetUseErrorPages(PRBool aUseErrorPages) = 0; /** * Keeps track of the previous SHTransaction index and the current * SHTransaction index at the time that the doc shell begins to load. * Used for ContentViewer eviction. */ /* readonly attribute long previousTransIndex; */ NS_IMETHOD GetPreviousTransIndex(PRInt32 *aPreviousTransIndex) = 0; /* readonly attribute long loadedTransIndex; */ NS_IMETHOD GetLoadedTransIndex(PRInt32 *aLoadedTransIndex) = 0; /** * Notification that entries have been removed from the beginning of a * nsSHistory which has this as its rootDocShell. * * @param numEntries - The number of entries removed */ /* void historyPurged (in long numEntries); */ NS_IMETHOD HistoryPurged(PRInt32 numEntries) = 0; }; /* Use this macro when declaring classes that implement this interface. */ #define NS_DECL_NSIDOCSHELL \ NS_IMETHOD LoadURI(nsIURI *uri, nsIDocShellLoadInfo *loadInfo, PRUint32 aLoadFlags, PRBool firstParty); \ NS_IMETHOD LoadStream(nsIInputStream *aStream, nsIURI *aURI, const nsACString & aContentType, const nsACString & aContentCharset, nsIDocShellLoadInfo *aLoadInfo); \ NS_IMETHOD InternalLoad(nsIURI *aURI, nsIURI *aReferrer, nsISupports *aOwner, PRUint32 aFlags, const PRUnichar *aWindowTarget, const char *aTypeHint, nsIInputStream *aPostDataStream, nsIInputStream *aHeadersStream, PRUint32 aLoadFlags, nsISHEntry *aSHEntry, PRBool firstParty, nsIDocShell **aDocShell, nsIRequest **aRequest); \ NS_IMETHOD CreateLoadInfo(nsIDocShellLoadInfo **loadInfo); \ NS_IMETHOD PrepareForNewContentModel(void); \ NS_IMETHOD SetCurrentURI(nsIURI *aURI); \ NS_IMETHOD FirePageHideNotification(PRBool isUnload); \ NS_IMETHOD GetPresContext(nsPresContext * *aPresContext); \ NS_IMETHOD GetPresShell(nsIPresShell * *aPresShell); \ NS_IMETHOD GetEldestPresShell(nsIPresShell * *aEldestPresShell); \ NS_IMETHOD GetContentViewer(nsIContentViewer * *aContentViewer); \ NS_IMETHOD GetChromeEventHandler(nsIChromeEventHandler * *aChromeEventHandler); \ NS_IMETHOD SetChromeEventHandler(nsIChromeEventHandler * aChromeEventHandler); \ NS_IMETHOD GetDocumentCharsetInfo(nsIDocumentCharsetInfo * *aDocumentCharsetInfo); \ NS_IMETHOD SetDocumentCharsetInfo(nsIDocumentCharsetInfo * aDocumentCharsetInfo); \ NS_IMETHOD GetAllowPlugins(PRBool *aAllowPlugins); \ NS_IMETHOD SetAllowPlugins(PRBool aAllowPlugins); \ NS_IMETHOD GetAllowJavascript(PRBool *aAllowJavascript); \ NS_IMETHOD SetAllowJavascript(PRBool aAllowJavascript); \ NS_IMETHOD GetAllowMetaRedirects(PRBool *aAllowMetaRedirects); \ NS_IMETHOD SetAllowMetaRedirects(PRBool aAllowMetaRedirects); \ NS_IMETHOD GetAllowSubframes(PRBool *aAllowSubframes); \ NS_IMETHOD SetAllowSubframes(PRBool aAllowSubframes); \ NS_IMETHOD GetAllowImages(PRBool *aAllowImages); \ NS_IMETHOD SetAllowImages(PRBool aAllowImages); \ NS_IMETHOD GetDocShellEnumerator(PRInt32 aItemType, PRInt32 aDirection, nsISimpleEnumerator **_retval); \ NS_IMETHOD GetAppType(PRUint32 *aAppType); \ NS_IMETHOD SetAppType(PRUint32 aAppType); \ NS_IMETHOD GetAllowAuth(PRBool *aAllowAuth); \ NS_IMETHOD SetAllowAuth(PRBool aAllowAuth); \ NS_IMETHOD GetZoom(float *aZoom); \ NS_IMETHOD SetZoom(float aZoom); \ NS_IMETHOD GetMarginWidth(PRInt32 *aMarginWidth); \ NS_IMETHOD SetMarginWidth(PRInt32 aMarginWidth); \ NS_IMETHOD GetMarginHeight(PRInt32 *aMarginHeight); \ NS_IMETHOD SetMarginHeight(PRInt32 aMarginHeight); \ NS_IMETHOD GetHasFocus(PRBool *aHasFocus); \ NS_IMETHOD SetHasFocus(PRBool aHasFocus); \ NS_IMETHOD GetCanvasHasFocus(PRBool *aCanvasHasFocus); \ NS_IMETHOD SetCanvasHasFocus(PRBool aCanvasHasFocus); \ NS_IMETHOD TabToTreeOwner(PRBool forward, PRBool *tookFocus); \ NS_IMETHOD GetBusyFlags(PRUint32 *aBusyFlags); \ NS_IMETHOD GetLoadType(PRUint32 *aLoadType); \ NS_IMETHOD SetLoadType(PRUint32 aLoadType); \ NS_IMETHOD IsBeingDestroyed(PRBool *_retval); \ NS_IMETHOD GetIsExecutingOnLoadHandler(PRBool *aIsExecutingOnLoadHandler); \ NS_IMETHOD GetLayoutHistoryState(nsILayoutHistoryState * *aLayoutHistoryState); \ NS_IMETHOD SetLayoutHistoryState(nsILayoutHistoryState * aLayoutHistoryState); \ NS_IMETHOD GetShouldSaveLayoutState(PRBool *aShouldSaveLayoutState); \ NS_IMETHOD GetSecurityUI(nsISecureBrowserUI * *aSecurityUI); \ NS_IMETHOD SetSecurityUI(nsISecureBrowserUI * aSecurityUI); \ NS_IMETHOD SuspendRefreshURIs(void); \ NS_IMETHOD ResumeRefreshURIs(void); \ NS_IMETHOD BeginRestore(nsIContentViewer *viewer, PRBool top); \ NS_IMETHOD FinishRestore(void); \ NS_IMETHOD GetRestoringDocument(PRBool *aRestoringDocument); \ NS_IMETHOD GetUseErrorPages(PRBool *aUseErrorPages); \ NS_IMETHOD SetUseErrorPages(PRBool aUseErrorPages); \ NS_IMETHOD GetPreviousTransIndex(PRInt32 *aPreviousTransIndex); \ NS_IMETHOD GetLoadedTransIndex(PRInt32 *aLoadedTransIndex); \ NS_IMETHOD HistoryPurged(PRInt32 numEntries); /* Use this macro to declare functions that forward the behavior of this interface to another object. */ #define NS_FORWARD_NSIDOCSHELL(_to) \ NS_IMETHOD LoadURI(nsIURI *uri, nsIDocShellLoadInfo *loadInfo, PRUint32 aLoadFlags, PRBool firstParty) { return _to LoadURI(uri, loadInfo, aLoadFlags, firstParty); } \ NS_IMETHOD LoadStream(nsIInputStream *aStream, nsIURI *aURI, const nsACString & aContentType, const nsACString & aContentCharset, nsIDocShellLoadInfo *aLoadInfo) { return _to LoadStream(aStream, aURI, aContentType, aContentCharset, aLoadInfo); } \ NS_IMETHOD InternalLoad(nsIURI *aURI, nsIURI *aReferrer, nsISupports *aOwner, PRUint32 aFlags, const PRUnichar *aWindowTarget, const char *aTypeHint, nsIInputStream *aPostDataStream, nsIInputStream *aHeadersStream, PRUint32 aLoadFlags, nsISHEntry *aSHEntry, PRBool firstParty, nsIDocShell **aDocShell, nsIRequest **aRequest) { return _to InternalLoad(aURI, aReferrer, aOwner, aFlags, aWindowTarget, aTypeHint, aPostDataStream, aHeadersStream, aLoadFlags, aSHEntry, firstParty, aDocShell, aRequest); } \ NS_IMETHOD CreateLoadInfo(nsIDocShellLoadInfo **loadInfo) { return _to CreateLoadInfo(loadInfo); } \ NS_IMETHOD PrepareForNewContentModel(void) { return _to PrepareForNewContentModel(); } \ NS_IMETHOD SetCurrentURI(nsIURI *aURI) { return _to SetCurrentURI(aURI); } \ NS_IMETHOD FirePageHideNotification(PRBool isUnload) { return _to FirePageHideNotification(isUnload); } \ NS_IMETHOD GetPresContext(nsPresContext * *aPresContext) { return _to GetPresContext(aPresContext); } \ NS_IMETHOD GetPresShell(nsIPresShell * *aPresShell) { return _to GetPresShell(aPresShell); } \ NS_IMETHOD GetEldestPresShell(nsIPresShell * *aEldestPresShell) { return _to GetEldestPresShell(aEldestPresShell); } \ NS_IMETHOD GetContentViewer(nsIContentViewer * *aContentViewer) { return _to GetContentViewer(aContentViewer); } \ NS_IMETHOD GetChromeEventHandler(nsIChromeEventHandler * *aChromeEventHandler) { return _to GetChromeEventHandler(aChromeEventHandler); } \ NS_IMETHOD SetChromeEventHandler(nsIChromeEventHandler * aChromeEventHandler) { return _to SetChromeEventHandler(aChromeEventHandler); } \ NS_IMETHOD GetDocumentCharsetInfo(nsIDocumentCharsetInfo * *aDocumentCharsetInfo) { return _to GetDocumentCharsetInfo(aDocumentCharsetInfo); } \ NS_IMETHOD SetDocumentCharsetInfo(nsIDocumentCharsetInfo * aDocumentCharsetInfo) { return _to SetDocumentCharsetInfo(aDocumentCharsetInfo); } \ NS_IMETHOD GetAllowPlugins(PRBool *aAllowPlugins) { return _to GetAllowPlugins(aAllowPlugins); } \ NS_IMETHOD SetAllowPlugins(PRBool aAllowPlugins) { return _to SetAllowPlugins(aAllowPlugins); } \ NS_IMETHOD GetAllowJavascript(PRBool *aAllowJavascript) { return _to GetAllowJavascript(aAllowJavascript); } \ NS_IMETHOD SetAllowJavascript(PRBool aAllowJavascript) { return _to SetAllowJavascript(aAllowJavascript); } \ NS_IMETHOD GetAllowMetaRedirects(PRBool *aAllowMetaRedirects) { return _to GetAllowMetaRedirects(aAllowMetaRedirects); } \ NS_IMETHOD SetAllowMetaRedirects(PRBool aAllowMetaRedirects) { return _to SetAllowMetaRedirects(aAllowMetaRedirects); } \ NS_IMETHOD GetAllowSubframes(PRBool *aAllowSubframes) { return _to GetAllowSubframes(aAllowSubframes); } \ NS_IMETHOD SetAllowSubframes(PRBool aAllowSubframes) { return _to SetAllowSubframes(aAllowSubframes); } \ NS_IMETHOD GetAllowImages(PRBool *aAllowImages) { return _to GetAllowImages(aAllowImages); } \ NS_IMETHOD SetAllowImages(PRBool aAllowImages) { return _to SetAllowImages(aAllowImages); } \ NS_IMETHOD GetDocShellEnumerator(PRInt32 aItemType, PRInt32 aDirection, nsISimpleEnumerator **_retval) { return _to GetDocShellEnumerator(aItemType, aDirection, _retval); } \ NS_IMETHOD GetAppType(PRUint32 *aAppType) { return _to GetAppType(aAppType); } \ NS_IMETHOD SetAppType(PRUint32 aAppType) { return _to SetAppType(aAppType); } \ NS_IMETHOD GetAllowAuth(PRBool *aAllowAuth) { return _to GetAllowAuth(aAllowAuth); } \ NS_IMETHOD SetAllowAuth(PRBool aAllowAuth) { return _to SetAllowAuth(aAllowAuth); } \ NS_IMETHOD GetZoom(float *aZoom) { return _to GetZoom(aZoom); } \ NS_IMETHOD SetZoom(float aZoom) { return _to SetZoom(aZoom); } \ NS_IMETHOD GetMarginWidth(PRInt32 *aMarginWidth) { return _to GetMarginWidth(aMarginWidth); } \ NS_IMETHOD SetMarginWidth(PRInt32 aMarginWidth) { return _to SetMarginWidth(aMarginWidth); } \ NS_IMETHOD GetMarginHeight(PRInt32 *aMarginHeight) { return _to GetMarginHeight(aMarginHeight); } \ NS_IMETHOD SetMarginHeight(PRInt32 aMarginHeight) { return _to SetMarginHeight(aMarginHeight); } \ NS_IMETHOD GetHasFocus(PRBool *aHasFocus) { return _to GetHasFocus(aHasFocus); } \ NS_IMETHOD SetHasFocus(PRBool aHasFocus) { return _to SetHasFocus(aHasFocus); } \ NS_IMETHOD GetCanvasHasFocus(PRBool *aCanvasHasFocus) { return _to GetCanvasHasFocus(aCanvasHasFocus); } \ NS_IMETHOD SetCanvasHasFocus(PRBool aCanvasHasFocus) { return _to SetCanvasHasFocus(aCanvasHasFocus); } \ NS_IMETHOD TabToTreeOwner(PRBool forward, PRBool *tookFocus) { return _to TabToTreeOwner(forward, tookFocus); } \ NS_IMETHOD GetBusyFlags(PRUint32 *aBusyFlags) { return _to GetBusyFlags(aBusyFlags); } \ NS_IMETHOD GetLoadType(PRUint32 *aLoadType) { return _to GetLoadType(aLoadType); } \ NS_IMETHOD SetLoadType(PRUint32 aLoadType) { return _to SetLoadType(aLoadType); } \ NS_IMETHOD IsBeingDestroyed(PRBool *_retval) { return _to IsBeingDestroyed(_retval); } \ NS_IMETHOD GetIsExecutingOnLoadHandler(PRBool *aIsExecutingOnLoadHandler) { return _to GetIsExecutingOnLoadHandler(aIsExecutingOnLoadHandler); } \ NS_IMETHOD GetLayoutHistoryState(nsILayoutHistoryState * *aLayoutHistoryState) { return _to GetLayoutHistoryState(aLayoutHistoryState); } \ NS_IMETHOD SetLayoutHistoryState(nsILayoutHistoryState * aLayoutHistoryState) { return _to SetLayoutHistoryState(aLayoutHistoryState); } \ NS_IMETHOD GetShouldSaveLayoutState(PRBool *aShouldSaveLayoutState) { return _to GetShouldSaveLayoutState(aShouldSaveLayoutState); } \ NS_IMETHOD GetSecurityUI(nsISecureBrowserUI * *aSecurityUI) { return _to GetSecurityUI(aSecurityUI); } \ NS_IMETHOD SetSecurityUI(nsISecureBrowserUI * aSecurityUI) { return _to SetSecurityUI(aSecurityUI); } \ NS_IMETHOD SuspendRefreshURIs(void) { return _to SuspendRefreshURIs(); } \ NS_IMETHOD ResumeRefreshURIs(void) { return _to ResumeRefreshURIs(); } \ NS_IMETHOD BeginRestore(nsIContentViewer *viewer, PRBool top) { return _to BeginRestore(viewer, top); } \ NS_IMETHOD FinishRestore(void) { return _to FinishRestore(); } \ NS_IMETHOD GetRestoringDocument(PRBool *aRestoringDocument) { return _to GetRestoringDocument(aRestoringDocument); } \ NS_IMETHOD GetUseErrorPages(PRBool *aUseErrorPages) { return _to GetUseErrorPages(aUseErrorPages); } \ NS_IMETHOD SetUseErrorPages(PRBool aUseErrorPages) { return _to SetUseErrorPages(aUseErrorPages); } \ NS_IMETHOD GetPreviousTransIndex(PRInt32 *aPreviousTransIndex) { return _to GetPreviousTransIndex(aPreviousTransIndex); } \ NS_IMETHOD GetLoadedTransIndex(PRInt32 *aLoadedTransIndex) { return _to GetLoadedTransIndex(aLoadedTransIndex); } \ NS_IMETHOD HistoryPurged(PRInt32 numEntries) { return _to HistoryPurged(numEntries); } /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */ #define NS_FORWARD_SAFE_NSIDOCSHELL(_to) \ NS_IMETHOD LoadURI(nsIURI *uri, nsIDocShellLoadInfo *loadInfo, PRUint32 aLoadFlags, PRBool firstParty) { return !_to ? NS_ERROR_NULL_POINTER : _to->LoadURI(uri, loadInfo, aLoadFlags, firstParty); } \ NS_IMETHOD LoadStream(nsIInputStream *aStream, nsIURI *aURI, const nsACString & aContentType, const nsACString & aContentCharset, nsIDocShellLoadInfo *aLoadInfo) { return !_to ? NS_ERROR_NULL_POINTER : _to->LoadStream(aStream, aURI, aContentType, aContentCharset, aLoadInfo); } \ NS_IMETHOD InternalLoad(nsIURI *aURI, nsIURI *aReferrer, nsISupports *aOwner, PRUint32 aFlags, const PRUnichar *aWindowTarget, const char *aTypeHint, nsIInputStream *aPostDataStream, nsIInputStream *aHeadersStream, PRUint32 aLoadFlags, nsISHEntry *aSHEntry, PRBool firstParty, nsIDocShell **aDocShell, nsIRequest **aRequest) { return !_to ? NS_ERROR_NULL_POINTER : _to->InternalLoad(aURI, aReferrer, aOwner, aFlags, aWindowTarget, aTypeHint, aPostDataStream, aHeadersStream, aLoadFlags, aSHEntry, firstParty, aDocShell, aRequest); } \ NS_IMETHOD CreateLoadInfo(nsIDocShellLoadInfo **loadInfo) { return !_to ? NS_ERROR_NULL_POINTER : _to->CreateLoadInfo(loadInfo); } \ NS_IMETHOD PrepareForNewContentModel(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->PrepareForNewContentModel(); } \ NS_IMETHOD SetCurrentURI(nsIURI *aURI) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetCurrentURI(aURI); } \ NS_IMETHOD FirePageHideNotification(PRBool isUnload) { return !_to ? NS_ERROR_NULL_POINTER : _to->FirePageHideNotification(isUnload); } \ NS_IMETHOD GetPresContext(nsPresContext * *aPresContext) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPresContext(aPresContext); } \ NS_IMETHOD GetPresShell(nsIPresShell * *aPresShell) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPresShell(aPresShell); } \ NS_IMETHOD GetEldestPresShell(nsIPresShell * *aEldestPresShell) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetEldestPresShell(aEldestPresShell); } \ NS_IMETHOD GetContentViewer(nsIContentViewer * *aContentViewer) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetContentViewer(aContentViewer); } \ NS_IMETHOD GetChromeEventHandler(nsIChromeEventHandler * *aChromeEventHandler) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetChromeEventHandler(aChromeEventHandler); } \ NS_IMETHOD SetChromeEventHandler(nsIChromeEventHandler * aChromeEventHandler) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetChromeEventHandler(aChromeEventHandler); } \ NS_IMETHOD GetDocumentCharsetInfo(nsIDocumentCharsetInfo * *aDocumentCharsetInfo) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDocumentCharsetInfo(aDocumentCharsetInfo); } \ NS_IMETHOD SetDocumentCharsetInfo(nsIDocumentCharsetInfo * aDocumentCharsetInfo) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetDocumentCharsetInfo(aDocumentCharsetInfo); } \ NS_IMETHOD GetAllowPlugins(PRBool *aAllowPlugins) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetAllowPlugins(aAllowPlugins); } \ NS_IMETHOD SetAllowPlugins(PRBool aAllowPlugins) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetAllowPlugins(aAllowPlugins); } \ NS_IMETHOD GetAllowJavascript(PRBool *aAllowJavascript) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetAllowJavascript(aAllowJavascript); } \ NS_IMETHOD SetAllowJavascript(PRBool aAllowJavascript) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetAllowJavascript(aAllowJavascript); } \ NS_IMETHOD GetAllowMetaRedirects(PRBool *aAllowMetaRedirects) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetAllowMetaRedirects(aAllowMetaRedirects); } \ NS_IMETHOD SetAllowMetaRedirects(PRBool aAllowMetaRedirects) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetAllowMetaRedirects(aAllowMetaRedirects); } \ NS_IMETHOD GetAllowSubframes(PRBool *aAllowSubframes) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetAllowSubframes(aAllowSubframes); } \ NS_IMETHOD SetAllowSubframes(PRBool aAllowSubframes) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetAllowSubframes(aAllowSubframes); } \ NS_IMETHOD GetAllowImages(PRBool *aAllowImages) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetAllowImages(aAllowImages); } \ NS_IMETHOD SetAllowImages(PRBool aAllowImages) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetAllowImages(aAllowImages); } \ NS_IMETHOD GetDocShellEnumerator(PRInt32 aItemType, PRInt32 aDirection, nsISimpleEnumerator **_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetDocShellEnumerator(aItemType, aDirection, _retval); } \ NS_IMETHOD GetAppType(PRUint32 *aAppType) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetAppType(aAppType); } \ NS_IMETHOD SetAppType(PRUint32 aAppType) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetAppType(aAppType); } \ NS_IMETHOD GetAllowAuth(PRBool *aAllowAuth) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetAllowAuth(aAllowAuth); } \ NS_IMETHOD SetAllowAuth(PRBool aAllowAuth) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetAllowAuth(aAllowAuth); } \ NS_IMETHOD GetZoom(float *aZoom) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetZoom(aZoom); } \ NS_IMETHOD SetZoom(float aZoom) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetZoom(aZoom); } \ NS_IMETHOD GetMarginWidth(PRInt32 *aMarginWidth) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMarginWidth(aMarginWidth); } \ NS_IMETHOD SetMarginWidth(PRInt32 aMarginWidth) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMarginWidth(aMarginWidth); } \ NS_IMETHOD GetMarginHeight(PRInt32 *aMarginHeight) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetMarginHeight(aMarginHeight); } \ NS_IMETHOD SetMarginHeight(PRInt32 aMarginHeight) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetMarginHeight(aMarginHeight); } \ NS_IMETHOD GetHasFocus(PRBool *aHasFocus) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetHasFocus(aHasFocus); } \ NS_IMETHOD SetHasFocus(PRBool aHasFocus) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetHasFocus(aHasFocus); } \ NS_IMETHOD GetCanvasHasFocus(PRBool *aCanvasHasFocus) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetCanvasHasFocus(aCanvasHasFocus); } \ NS_IMETHOD SetCanvasHasFocus(PRBool aCanvasHasFocus) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetCanvasHasFocus(aCanvasHasFocus); } \ NS_IMETHOD TabToTreeOwner(PRBool forward, PRBool *tookFocus) { return !_to ? NS_ERROR_NULL_POINTER : _to->TabToTreeOwner(forward, tookFocus); } \ NS_IMETHOD GetBusyFlags(PRUint32 *aBusyFlags) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetBusyFlags(aBusyFlags); } \ NS_IMETHOD GetLoadType(PRUint32 *aLoadType) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLoadType(aLoadType); } \ NS_IMETHOD SetLoadType(PRUint32 aLoadType) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetLoadType(aLoadType); } \ NS_IMETHOD IsBeingDestroyed(PRBool *_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->IsBeingDestroyed(_retval); } \ NS_IMETHOD GetIsExecutingOnLoadHandler(PRBool *aIsExecutingOnLoadHandler) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetIsExecutingOnLoadHandler(aIsExecutingOnLoadHandler); } \ NS_IMETHOD GetLayoutHistoryState(nsILayoutHistoryState * *aLayoutHistoryState) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLayoutHistoryState(aLayoutHistoryState); } \ NS_IMETHOD SetLayoutHistoryState(nsILayoutHistoryState * aLayoutHistoryState) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetLayoutHistoryState(aLayoutHistoryState); } \ NS_IMETHOD GetShouldSaveLayoutState(PRBool *aShouldSaveLayoutState) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetShouldSaveLayoutState(aShouldSaveLayoutState); } \ NS_IMETHOD GetSecurityUI(nsISecureBrowserUI * *aSecurityUI) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSecurityUI(aSecurityUI); } \ NS_IMETHOD SetSecurityUI(nsISecureBrowserUI * aSecurityUI) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetSecurityUI(aSecurityUI); } \ NS_IMETHOD SuspendRefreshURIs(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->SuspendRefreshURIs(); } \ NS_IMETHOD ResumeRefreshURIs(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->ResumeRefreshURIs(); } \ NS_IMETHOD BeginRestore(nsIContentViewer *viewer, PRBool top) { return !_to ? NS_ERROR_NULL_POINTER : _to->BeginRestore(viewer, top); } \ NS_IMETHOD FinishRestore(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->FinishRestore(); } \ NS_IMETHOD GetRestoringDocument(PRBool *aRestoringDocument) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetRestoringDocument(aRestoringDocument); } \ NS_IMETHOD GetUseErrorPages(PRBool *aUseErrorPages) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetUseErrorPages(aUseErrorPages); } \ NS_IMETHOD SetUseErrorPages(PRBool aUseErrorPages) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetUseErrorPages(aUseErrorPages); } \ NS_IMETHOD GetPreviousTransIndex(PRInt32 *aPreviousTransIndex) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPreviousTransIndex(aPreviousTransIndex); } \ NS_IMETHOD GetLoadedTransIndex(PRInt32 *aLoadedTransIndex) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetLoadedTransIndex(aLoadedTransIndex); } \ NS_IMETHOD HistoryPurged(PRInt32 numEntries) { return !_to ? NS_ERROR_NULL_POINTER : _to->HistoryPurged(numEntries); } #if 0 /* Use the code below as a template for the implementation class for this interface. */ /* Header file */ class nsDocShell : public nsIDocShell { public: NS_DECL_ISUPPORTS NS_DECL_NSIDOCSHELL nsDocShell(); private: ~nsDocShell(); protected: /* additional members */ }; /* Implementation file */ NS_IMPL_ISUPPORTS1(nsDocShell, nsIDocShell) nsDocShell::nsDocShell() { /* member initializers and constructor code */ } nsDocShell::~nsDocShell() { /* destructor code */ } /* [noscript] void loadURI (in nsIURI uri, in nsIDocShellLoadInfo loadInfo, in unsigned long aLoadFlags, in boolean firstParty); */ NS_IMETHODIMP nsDocShell::LoadURI(nsIURI *uri, nsIDocShellLoadInfo *loadInfo, PRUint32 aLoadFlags, PRBool firstParty) { return NS_ERROR_NOT_IMPLEMENTED; } /* [noscript] void loadStream (in nsIInputStream aStream, in nsIURI aURI, in ACString aContentType, in ACString aContentCharset, in nsIDocShellLoadInfo aLoadInfo); */ NS_IMETHODIMP nsDocShell::LoadStream(nsIInputStream *aStream, nsIURI *aURI, const nsACString & aContentType, const nsACString & aContentCharset, nsIDocShellLoadInfo *aLoadInfo) { return NS_ERROR_NOT_IMPLEMENTED; } /* [noscript] void internalLoad (in nsIURI aURI, in nsIURI aReferrer, in nsISupports aOwner, in PRUint32 aFlags, in wstring aWindowTarget, in string aTypeHint, in nsIInputStream aPostDataStream, in nsIInputStream aHeadersStream, in unsigned long aLoadFlags, in nsISHEntry aSHEntry, in boolean firstParty, out nsIDocShell aDocShell, out nsIRequest aRequest); */ NS_IMETHODIMP nsDocShell::InternalLoad(nsIURI *aURI, nsIURI *aReferrer, nsISupports *aOwner, PRUint32 aFlags, const PRUnichar *aWindowTarget, const char *aTypeHint, nsIInputStream *aPostDataStream, nsIInputStream *aHeadersStream, PRUint32 aLoadFlags, nsISHEntry *aSHEntry, PRBool firstParty, nsIDocShell **aDocShell, nsIRequest **aRequest) { return NS_ERROR_NOT_IMPLEMENTED; } /* void createLoadInfo (out nsIDocShellLoadInfo loadInfo); */ NS_IMETHODIMP nsDocShell::CreateLoadInfo(nsIDocShellLoadInfo **loadInfo) { return NS_ERROR_NOT_IMPLEMENTED; } /* void prepareForNewContentModel (); */ NS_IMETHODIMP nsDocShell::PrepareForNewContentModel() { return NS_ERROR_NOT_IMPLEMENTED; } /* void setCurrentURI (in nsIURI aURI); */ NS_IMETHODIMP nsDocShell::SetCurrentURI(nsIURI *aURI) { return NS_ERROR_NOT_IMPLEMENTED; } /* [noscript] void firePageHideNotification (in boolean isUnload); */ NS_IMETHODIMP nsDocShell::FirePageHideNotification(PRBool isUnload) { return NS_ERROR_NOT_IMPLEMENTED; } /* [noscript] readonly attribute nsPresContext presContext; */ NS_IMETHODIMP nsDocShell::GetPresContext(nsPresContext * *aPresContext) { return NS_ERROR_NOT_IMPLEMENTED; } /* [noscript] readonly attribute nsIPresShell presShell; */ NS_IMETHODIMP nsDocShell::GetPresShell(nsIPresShell * *aPresShell) { return NS_ERROR_NOT_IMPLEMENTED; } /* [noscript] readonly attribute nsIPresShell eldestPresShell; */ NS_IMETHODIMP nsDocShell::GetEldestPresShell(nsIPresShell * *aEldestPresShell) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute nsIContentViewer contentViewer; */ NS_IMETHODIMP nsDocShell::GetContentViewer(nsIContentViewer * *aContentViewer) { return NS_ERROR_NOT_IMPLEMENTED; } /* attribute nsIChromeEventHandler chromeEventHandler; */ NS_IMETHODIMP nsDocShell::GetChromeEventHandler(nsIChromeEventHandler * *aChromeEventHandler) { return NS_ERROR_NOT_IMPLEMENTED; } NS_IMETHODIMP nsDocShell::SetChromeEventHandler(nsIChromeEventHandler * aChromeEventHandler) { return NS_ERROR_NOT_IMPLEMENTED; } /* attribute nsIDocumentCharsetInfo documentCharsetInfo; */ NS_IMETHODIMP nsDocShell::GetDocumentCharsetInfo(nsIDocumentCharsetInfo * *aDocumentCharsetInfo) { return NS_ERROR_NOT_IMPLEMENTED; } NS_IMETHODIMP nsDocShell::SetDocumentCharsetInfo(nsIDocumentCharsetInfo * aDocumentCharsetInfo) { return NS_ERROR_NOT_IMPLEMENTED; } /* attribute boolean allowPlugins; */ NS_IMETHODIMP nsDocShell::GetAllowPlugins(PRBool *aAllowPlugins) { return NS_ERROR_NOT_IMPLEMENTED; } NS_IMETHODIMP nsDocShell::SetAllowPlugins(PRBool aAllowPlugins) { return NS_ERROR_NOT_IMPLEMENTED; } /* attribute boolean allowJavascript; */ NS_IMETHODIMP nsDocShell::GetAllowJavascript(PRBool *aAllowJavascript) { return NS_ERROR_NOT_IMPLEMENTED; } NS_IMETHODIMP nsDocShell::SetAllowJavascript(PRBool aAllowJavascript) { return NS_ERROR_NOT_IMPLEMENTED; } /* attribute boolean allowMetaRedirects; */ NS_IMETHODIMP nsDocShell::GetAllowMetaRedirects(PRBool *aAllowMetaRedirects) { return NS_ERROR_NOT_IMPLEMENTED; } NS_IMETHODIMP nsDocShell::SetAllowMetaRedirects(PRBool aAllowMetaRedirects) { return NS_ERROR_NOT_IMPLEMENTED; } /* attribute boolean allowSubframes; */ NS_IMETHODIMP nsDocShell::GetAllowSubframes(PRBool *aAllowSubframes) { return NS_ERROR_NOT_IMPLEMENTED; } NS_IMETHODIMP nsDocShell::SetAllowSubframes(PRBool aAllowSubframes) { return NS_ERROR_NOT_IMPLEMENTED; } /* attribute boolean allowImages; */ NS_IMETHODIMP nsDocShell::GetAllowImages(PRBool *aAllowImages) { return NS_ERROR_NOT_IMPLEMENTED; } NS_IMETHODIMP nsDocShell::SetAllowImages(PRBool aAllowImages) { return NS_ERROR_NOT_IMPLEMENTED; } /* nsISimpleEnumerator getDocShellEnumerator (in long aItemType, in long aDirection); */ NS_IMETHODIMP nsDocShell::GetDocShellEnumerator(PRInt32 aItemType, PRInt32 aDirection, nsISimpleEnumerator **_retval) { return NS_ERROR_NOT_IMPLEMENTED; } /* attribute unsigned long appType; */ NS_IMETHODIMP nsDocShell::GetAppType(PRUint32 *aAppType) { return NS_ERROR_NOT_IMPLEMENTED; } NS_IMETHODIMP nsDocShell::SetAppType(PRUint32 aAppType) { return NS_ERROR_NOT_IMPLEMENTED; } /* attribute boolean allowAuth; */ NS_IMETHODIMP nsDocShell::GetAllowAuth(PRBool *aAllowAuth) { return NS_ERROR_NOT_IMPLEMENTED; } NS_IMETHODIMP nsDocShell::SetAllowAuth(PRBool aAllowAuth) { return NS_ERROR_NOT_IMPLEMENTED; } /* attribute float zoom; */ NS_IMETHODIMP nsDocShell::GetZoom(float *aZoom) { return NS_ERROR_NOT_IMPLEMENTED; } NS_IMETHODIMP nsDocShell::SetZoom(float aZoom) { return NS_ERROR_NOT_IMPLEMENTED; } /* attribute long marginWidth; */ NS_IMETHODIMP nsDocShell::GetMarginWidth(PRInt32 *aMarginWidth) { return NS_ERROR_NOT_IMPLEMENTED; } NS_IMETHODIMP nsDocShell::SetMarginWidth(PRInt32 aMarginWidth) { return NS_ERROR_NOT_IMPLEMENTED; } /* attribute long marginHeight; */ NS_IMETHODIMP nsDocShell::GetMarginHeight(PRInt32 *aMarginHeight) { return NS_ERROR_NOT_IMPLEMENTED; } NS_IMETHODIMP nsDocShell::SetMarginHeight(PRInt32 aMarginHeight) { return NS_ERROR_NOT_IMPLEMENTED; } /* attribute boolean hasFocus; */ NS_IMETHODIMP nsDocShell::GetHasFocus(PRBool *aHasFocus) { return NS_ERROR_NOT_IMPLEMENTED; } NS_IMETHODIMP nsDocShell::SetHasFocus(PRBool aHasFocus) { return NS_ERROR_NOT_IMPLEMENTED; } /* attribute boolean canvasHasFocus; */ NS_IMETHODIMP nsDocShell::GetCanvasHasFocus(PRBool *aCanvasHasFocus) { return NS_ERROR_NOT_IMPLEMENTED; } NS_IMETHODIMP nsDocShell::SetCanvasHasFocus(PRBool aCanvasHasFocus) { return NS_ERROR_NOT_IMPLEMENTED; } /* void tabToTreeOwner (in boolean forward, out boolean tookFocus); */ NS_IMETHODIMP nsDocShell::TabToTreeOwner(PRBool forward, PRBool *tookFocus) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute unsigned long busyFlags; */ NS_IMETHODIMP nsDocShell::GetBusyFlags(PRUint32 *aBusyFlags) { return NS_ERROR_NOT_IMPLEMENTED; } /* attribute unsigned long loadType; */ NS_IMETHODIMP nsDocShell::GetLoadType(PRUint32 *aLoadType) { return NS_ERROR_NOT_IMPLEMENTED; } NS_IMETHODIMP nsDocShell::SetLoadType(PRUint32 aLoadType) { return NS_ERROR_NOT_IMPLEMENTED; } /* boolean isBeingDestroyed (); */ NS_IMETHODIMP nsDocShell::IsBeingDestroyed(PRBool *_retval) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute boolean isExecutingOnLoadHandler; */ NS_IMETHODIMP nsDocShell::GetIsExecutingOnLoadHandler(PRBool *aIsExecutingOnLoadHandler) { return NS_ERROR_NOT_IMPLEMENTED; } /* attribute nsILayoutHistoryState layoutHistoryState; */ NS_IMETHODIMP nsDocShell::GetLayoutHistoryState(nsILayoutHistoryState * *aLayoutHistoryState) { return NS_ERROR_NOT_IMPLEMENTED; } NS_IMETHODIMP nsDocShell::SetLayoutHistoryState(nsILayoutHistoryState * aLayoutHistoryState) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute boolean shouldSaveLayoutState; */ NS_IMETHODIMP nsDocShell::GetShouldSaveLayoutState(PRBool *aShouldSaveLayoutState) { return NS_ERROR_NOT_IMPLEMENTED; } /* attribute nsISecureBrowserUI securityUI; */ NS_IMETHODIMP nsDocShell::GetSecurityUI(nsISecureBrowserUI * *aSecurityUI) { return NS_ERROR_NOT_IMPLEMENTED; } NS_IMETHODIMP nsDocShell::SetSecurityUI(nsISecureBrowserUI * aSecurityUI) { return NS_ERROR_NOT_IMPLEMENTED; } /* void suspendRefreshURIs (); */ NS_IMETHODIMP nsDocShell::SuspendRefreshURIs() { return NS_ERROR_NOT_IMPLEMENTED; } /* void resumeRefreshURIs (); */ NS_IMETHODIMP nsDocShell::ResumeRefreshURIs() { return NS_ERROR_NOT_IMPLEMENTED; } /* void beginRestore (in nsIContentViewer viewer, in boolean top); */ NS_IMETHODIMP nsDocShell::BeginRestore(nsIContentViewer *viewer, PRBool top) { return NS_ERROR_NOT_IMPLEMENTED; } /* void finishRestore (); */ NS_IMETHODIMP nsDocShell::FinishRestore() { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute boolean restoringDocument; */ NS_IMETHODIMP nsDocShell::GetRestoringDocument(PRBool *aRestoringDocument) { return NS_ERROR_NOT_IMPLEMENTED; } /* attribute boolean useErrorPages; */ NS_IMETHODIMP nsDocShell::GetUseErrorPages(PRBool *aUseErrorPages) { return NS_ERROR_NOT_IMPLEMENTED; } NS_IMETHODIMP nsDocShell::SetUseErrorPages(PRBool aUseErrorPages) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute long previousTransIndex; */ NS_IMETHODIMP nsDocShell::GetPreviousTransIndex(PRInt32 *aPreviousTransIndex) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute long loadedTransIndex; */ NS_IMETHODIMP nsDocShell::GetLoadedTransIndex(PRInt32 *aLoadedTransIndex) { return NS_ERROR_NOT_IMPLEMENTED; } /* void historyPurged (in long numEntries); */ NS_IMETHODIMP nsDocShell::HistoryPurged(PRInt32 numEntries) { return NS_ERROR_NOT_IMPLEMENTED; } /* End of implementation class template. */ #endif #endif /* __gen_nsIDocShell_h__ */